home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / compiler / syntax.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  50 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Check for errs in the AST.
  5.  
  6. The Python parser does not catch all syntax errors.  Others, like
  7. assignments with invalid targets, are caught in the code generation
  8. phase.
  9.  
  10. The compiler package catches some errors in the transformer module.
  11. But it seems clearer to write checkers that use the AST to detect
  12. errors.
  13. '''
  14. from compiler import ast, walk
  15.  
  16. def check(tree, multi = None):
  17.     v = SyntaxErrorChecker(multi)
  18.     walk(tree, v)
  19.     return v.errors
  20.  
  21.  
  22. class SyntaxErrorChecker:
  23.     '''A visitor to find syntax errors in the AST.'''
  24.     
  25.     def __init__(self, multi = None):
  26.         '''Create new visitor object.
  27.  
  28.         If optional argument multi is not None, then print messages
  29.         for each error rather than raising a SyntaxError for the
  30.         first.
  31.         '''
  32.         self.multi = multi
  33.         self.errors = 0
  34.  
  35.     
  36.     def error(self, node, msg):
  37.         self.errors = self.errors + 1
  38.         if self.multi is not None:
  39.             print '%s:%s: %s' % (node.filename, node.lineno, msg)
  40.         else:
  41.             raise SyntaxError, '%s (%s:%s)' % (msg, node.filename, node.lineno)
  42.  
  43.     
  44.     def visitAssign(self, node):
  45.         for target in node.nodes:
  46.             pass
  47.         
  48.  
  49.  
  50.